home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Games Collection 1 / software vault.zip / software vault / CDR10 / YICN23.ZIP / INCLUDE / YAKPANEL.H < prev    next >
C/C++ Source or Header  |  1993-02-17  |  481b  |  14 lines

  1. #include "stddefs.h"
  2. #include "yakwin.h"
  3. #include "gadgets.h"
  4.  
  5. class yakPanel : public yakWindow, public gadgetList //control panel window
  6. {
  7. public:
  8.   yakPanel(int x1, int y1, int x2, int y2) : yakWindow(x1,y1,x2,y2) {myFlags &= ~yakWindow::isSizeable;};
  9.   virtual word interpretKeyStroke(char myChar);
  10.   virtual word interpretMouseClick(void);
  11.   virtual void draw(word offset) {yakWindow::draw(offset); gadgetList::draw(x, y,offset);};
  12.   virtual int status(void);
  13. };
  14.